home *** CD-ROM | disk | FTP | other *** search
- function StretchDIBits(
- DC: HDC; // Device context handle
- DestX, // Upper left x-coordinate of the destination rect
- DestY, // Upper left y-coordinate of the destination rect
- DestWidth, // Width of the destination rectangle
- DestHegiht, // Height of the destination rectangle
- SrcX, // Upper left x-coordinate of the source rect
- SrcY, // Upper left y-coordinate of the source rect
- SrcWidth, // Width of the source rectangle
- SrcHeight: Integer; // Height of the source rectangle
- Bits: Pointer; // Address of the bitmap bits
- var BitsInfo: TBitmapInfo; // Bitmap info structure
- Usage: UINT; // Contains either DIB_PAL_COLORS or DIB_RGB_COLORS
- Rop: DWORD // Copy operation of source and destination
- ): Integer;